From: Jan Beulich Date: Tue, 29 Sep 2015 08:26:05 +0000 (+0200) Subject: x86/p2m-ept: adjust some types in ept_set_entry() X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~2485 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=32f511afd2f69edd2ae1d55588ea50ebe8ece9ea;p=xen.git x86/p2m-ept: adjust some types in ept_set_entry() Use unsigned and bool_t as appropriate. Signed-off-by: Jan Beulich Acked-by: Kevin Tian Reviewed-by: George Dunlap --- diff --git a/xen/arch/x86/mm/p2m-ept.c b/xen/arch/x86/mm/p2m-ept.c index d1a8c1b90c..ed4c4930bb 100644 --- a/xen/arch/x86/mm/p2m-ept.c +++ b/xen/arch/x86/mm/p2m-ept.c @@ -662,12 +662,12 @@ ept_set_entry(struct p2m_domain *p2m, unsigned long gfn, mfn_t mfn, { ept_entry_t *table, *ept_entry = NULL; unsigned long gfn_remainder = gfn; - int i, target = order / EPT_TABLE_ORDER; + unsigned int i, target = order / EPT_TABLE_ORDER; int ret, rc = 0; bool_t direct_mmio = (p2mt == p2m_mmio_direct); uint8_t ipat = 0; - int need_modify_vtd_table = 1; - int vtd_pte_present = 0; + bool_t need_modify_vtd_table = 1; + bool_t vtd_pte_present = 0; unsigned int iommu_flags = p2m_get_iommu_flags(p2mt); enum { sync_off, sync_on, sync_check } needs_sync = sync_check; ept_entry_t old_entry = { .epte = 0 };